home *** CD-ROM | disk | FTP | other *** search
- /*
- ImageMagick Image Enhance Methods.
- */
- #ifndef _MAGICK_ENHANCE_H
- #define _MAGICK_ENHANCE_H
-
- #if defined(__cplusplus) || defined(c_plusplus)
- extern "C" {
- #endif
-
- extern MagickExport unsigned int
- ContrastImage(Image *,const unsigned int),
- EqualizeImage(Image *image),
- GammaImage(Image *,const char *),
- GammaImageChannel(Image *,const ChannelType,const double),
- LevelImage(Image *,const char *),
- LevelImageChannel(Image *,const ChannelType,const double,const double,
- const double),
- ModulateImage(Image *,const char *),
- NegateImage(Image *,const unsigned int),
- NegateImageChannel(Image *,const ChannelType,const unsigned int),
- NormalizeImage(Image *),
- NormalizeImageChannel(Image *,const ChannelType);
-
- #if defined(__cplusplus) || defined(c_plusplus)
- }
- #endif
-
- #endif
-